ItemFormatter Property (FlexGridBase<T>)
In This Topic
Gets or sets a formatter function used to customize cells on this grid.
Syntax
'Declaration
<JsonConverterAttribute(C1.JsonNet.Converters.FunctionConverter)>
Public Overridable Property ItemFormatter As System.String
'Usage
Dim instance As FlexGridBase(Of T)
Dim value As System.String
instance.ItemFormatter = value
value = instance.ItemFormatter
[JsonConverter(C1.JsonNet.Converters.FunctionConverter)]
public virtual System.string ItemFormatter {get; set;}
public read-write property ItemFormatter: System.String; virtual;
JsonConverterAttribute(C1.JsonNet.Converters.FunctionConverter)
public function get,set ItemFormatter : System.String
[JsonConverter(C1.JsonNet.Converters.FunctionConverter)]
public: __property virtual System.string* get_ItemFormatter();
public: __property virtual void set_ItemFormatter(
System.string* value
);
[JsonConverter(C1.JsonNet.Converters.FunctionConverter)]
public:
virtual property System.String^ ItemFormatter {
System.String^ get();
void set ( System.String^ value);
}
See Also